1
2
3
4
5
6
7 package net.sf.pmr.keopsframework.domain.collection;
8
9 import java.util.Collection;
10
11 /***
12 * @author APROST
13 *
14 * TODO To change the template for this generated type comment go to Window -
15 * Preferences - Java - Code Style - Code Templates
16 */
17 public interface GhostDomainCollection {
18
19 /***
20 * @param objectToLoadFor TODO
21 * @return Collection collection
22 */
23 Collection loadForObject(final Object objectToLoadFor);
24
25 /***
26 * @return Collection collection
27 */
28 void setCollection(final Collection collection);
29
30 }